home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _BF31FC63DABE43468AB57DCFA8356807 < prev    next >
Encoding:
Text File  |  2004-03-17  |  558 b   |  21 lines

  1. regc4f( 5, %daycolor_r, %daycolor_g, %daycolor_b, %daycolor_a )
  2. regc4f( 7, %ambient_r, %ambient_g, %ambient_b, %ambient_a )
  3. pshader("
  4.  
  5. ps_1_1
  6.  
  7. tex t0 ;texture (RGB - color, A<0-127> - Opacity, A<128-255> - Specular Mask)
  8. tex t1 ;Terrain lightmap
  9.  
  10.  
  11.     mul            r0.rgb, t0, c5            ;applying daytime to color
  12.     +mad_sat    r0.a, t1.a, c7.b, c7.a    ;applying ambient to lightmap
  13.  
  14.     mul            r0.rgb, r0, r0.a        ;applying lighting to color
  15.     +mul        r0.a, t0.a, v0.a        ;applying fx opacity to texture opaciy
  16.  
  17.     mul            r0.rgb, r0, v0            ;applying fx color to color
  18. ")
  19.  
  20.  
  21.